Skorzystaj z wyszukiwarki lub indeksu alfabetycznego.
Przykłady: pci, /dev/null, functional unit, embedded system, pseudo-tty, nfs.
1 definition found
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
best fit
A resource allocation scheme (usually for memory).
Best Fit allocates resources in a way that optimises some
parameter. Alternative schemes such as first fit or random
allocation are likely to be quicker but sub-optimal in use of
resources.
For example, when allocating a new block of memory from a pool of
free blocks (a heap), one might choose the smallest space which
is big enough. This would leave larger spaces free to satisfy
larger requests and reduce fragmentation of the remaining free
space.
(2015-01-31)